Details

Add Lut Lookup Table effect to your camera.

Lut use Shader 3.0

Add it to the Camera GameObject via the Components menuCameraFilterPack > LUT > TestMode

*without and with Camera Filter Pack Lut TestMode


Property

Range

Default

Lut Texture // Must be a size of 256x16
Blend 0 to 1 1f ( 0 = original, 1 = Lut )

Manipulate Lut Simple by script

Example:

// Drag and Drop your Camera GameObject 
// with the Lut Simple component 
// to your current script on the CamFX_Lut_TestMode field 

public CameraFilterPack_Lut_TestMode CamFX_Lut_TestMode; 

void Update() 
{
		CamFX_Lut_TestMode.Blend =  1f;
}